Labels:text | electronics | screenshot | display | software | computer icon | number OCR: XSTRING.PAS unit Xstring; interface function FillStr (C : Char; N : Byte) : string; export; implementation function FillStr (C : Char; N : Byte) : string; { Returns a string with N characters of value C } begin FillChar (Result [ 1], N, C); Result [0] := Chr (N) ; end; end. 3: 30 Modified Insert Dllfirst >Xstring